home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9102.ARJ / 9N02072A < prev    next >
Text File  |  1992-07-06  |  406b  |  24 lines

  1.  
  2. stddef.h
  3.    typedef unsigned int size_t;
  4.  
  5. stdlib.h
  6. /* n is the largest possible randomly generated number 
  7. */
  8.    #define RAND_MAX  n
  9.  
  10. limits.h
  11. /* n is the largest possible value for an int variable 
  12. */
  13.    #define UINT_MAX  n
  14.  
  15. float.h
  16. /* n is the largest possible value for a double variable 
  17. */
  18.    #define DBL_MAX   n
  19.  
  20. string.h
  21.    extern char  *strdup();
  22.    extern int   strcmp();
  23.  
  24.